home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.july.archive / 000111_crash!cs.vu.nl!velschot_Fri, 30 Jul 93 05:45:11 PST.msg < prev    next >
Text File  |  1993-08-31  |  710b  |  25 lines

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Fri, 30 Jul 93 05:45:11 PST
  3. Received: from top.cs.vu.nl by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #15) id m0oLt7H-00001eC; Fri, 30 Jul 93 04:59 PDT
  5. Received: from galjoen.cs.vu.nl by top.cs.vu.nl id ab01977;
  6.           30 Jul 93 13:58 MET DST
  7. Date:     Thu, 29 Jul 93 10:00:18 MET DST
  8. cc:       AmigaE@bkhouse.cts.com
  9. Message-ID:  <9307291000.aa26449@galjoen.cs.vu.nl>
  10. From: Elschot VAW <velschot@cs.vu.nl>
  11. To: Politikill@cup.portal.com
  12. Subject: Re:  MidStr
  13.  
  14. hello,
  15. why not try this instead of MidStr()
  16. DEF string[80]:STRING
  17. DEF i
  18. DEF t
  19. FOR t:=startpos TO endpos
  20.     INC i
  21.     string[i]:=originalstring[t]
  22. ENDFOR
  23. SetStr(string,i)
  24.  
  25. vinny